home *** CD-ROM | disk | FTP | other *** search
/ PC PowerPlay 58 / pcpp58a.iso / extras / quake 3 source / Q3A_ToolSource.exe / Main / ZWnd.h < prev   
Encoding:
C/C++ Source or Header  |  2001-01-02  |  2.0 KB  |  70 lines

  1. #if !defined(AFX_ZWND_H__44B4BA02_781B_11D1_B53C_00AA00A410FC__INCLUDED_)
  2. #define AFX_ZWND_H__44B4BA02_781B_11D1_B53C_00AA00A410FC__INCLUDED_
  3.  
  4. #if _MSC_VER >= 1000
  5. #pragma once
  6. #endif // _MSC_VER >= 1000
  7. // ZWnd.h : header file
  8. //
  9.  
  10. /////////////////////////////////////////////////////////////////////////////
  11. // CZWnd window
  12.  
  13. class CZWnd : public CWnd
  14. {
  15.   DECLARE_DYNCREATE(CZWnd);
  16. // Construction
  17. public:
  18.     CZWnd();
  19.  
  20. // Attributes
  21. public:
  22.  
  23. // Operations
  24. public:
  25.  
  26. // Overrides
  27.     // ClassWizard generated virtual function overrides
  28.     //{{AFX_VIRTUAL(CZWnd)
  29.     protected:
  30.     virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  31.     //}}AFX_VIRTUAL
  32.  
  33. // Implementation
  34. public:
  35.     virtual ~CZWnd();
  36.  
  37.     // Generated message map functions
  38. protected:
  39.   HDC m_dcZ;
  40.   HGLRC m_hglrcZ;
  41.     //{{AFX_MSG(CZWnd)
  42.     afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  43.     afx_msg void OnDestroy();
  44.     afx_msg void OnKeyDown(UINT nChar, UINT nRepCnt, UINT nFlags);
  45.     afx_msg void OnLButtonDown(UINT nFlags, CPoint point);
  46.     afx_msg void OnMButtonDown(UINT nFlags, CPoint point);
  47.     afx_msg void OnRButtonDown(UINT nFlags, CPoint point);
  48.     afx_msg void OnPaint();
  49.     afx_msg void OnGetMinMaxInfo(MINMAXINFO FAR* lpMMI);
  50.     afx_msg void OnMouseMove(UINT nFlags, CPoint point);
  51.     afx_msg void OnSize(UINT nType, int cx, int cy);
  52.     afx_msg void OnNcCalcSize(BOOL bCalcValidRects, NCCALCSIZE_PARAMS FAR* lpncsp);
  53.     afx_msg void OnKillFocus(CWnd* pNewWnd);
  54.     afx_msg void OnSetFocus(CWnd* pOldWnd);
  55.     afx_msg void OnClose();
  56.     afx_msg void OnLButtonUp(UINT nFlags, CPoint point);
  57.     afx_msg void OnMButtonUp(UINT nFlags, CPoint point);
  58.     afx_msg void OnRButtonUp(UINT nFlags, CPoint point);
  59.     afx_msg void OnKeyUp(UINT nChar, UINT nRepCnt, UINT nFlags);
  60.     //}}AFX_MSG
  61.     DECLARE_MESSAGE_MAP()
  62. };
  63.  
  64. /////////////////////////////////////////////////////////////////////////////
  65.  
  66. //{{AFX_INSERT_LOCATION}}
  67. // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
  68.  
  69. #endif // !defined(AFX_ZWND_H__44B4BA02_781B_11D1_B53C_00AA00A410FC__INCLUDED_)
  70.